home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / ra_p250.zip / RADEMO.ARJ / RA250B.RAD / RUNRA.BAR < prev    next >
Text File  |  1996-05-01  |  590b  |  42 lines

  1. @echo off
  2. set RA=^
  3. &
  4. cd !
  5. #
  6.  
  7. :start
  8.   cls
  9.   echo Starting Node %1
  10.   &
  11.   cd !$
  12.   !\ra -e10 -n%1 ~
  13.  
  14. :afterra
  15.   if errorlevel 20 goto maintain
  16.   if errorlevel 10 goto start
  17.   if errorlevel  2 goto local
  18.   if errorlevel  0 goto quit
  19.  
  20. :maintain
  21.   if not %1 == 1 goto wait
  22.   cd !
  23.   echo ... > rawait.sem
  24.   rauser -s -p -d90
  25.   ramsg pack -overwrite -renumber -purge -link
  26.   rafile compress
  27.   erase rawait.sem
  28.   goto start
  29.  
  30. :local
  31.   cd !$
  32.   !\ra -e10 -l -n%1 ~
  33.   goto afterra
  34.  
  35. :wait
  36.   if exist rawait.sem goto wait
  37.   goto start
  38.  
  39. :quit
  40.   echo Node %1 down.
  41.  
  42.